

.mobile{
	width: 100%;
	-webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none;   /* Chrome/Safari/Opera */
  -khtml-user-select: none;    /* Konqueror */
  -moz-user-select: none;      /* Firefox */
  -ms-user-select: none;       /* IE/Edge */
  user-select: none;           /* non-prefixed version, currently
                                  not supported by any browser */
}
.mobile-inner{
	max-width: 100%;
	margin: auto;
	position: relative;
}

.mobile-header{
	width: 100%;
	height: 50px;
}
.mobile-header-icon{
	color: #ffffff;
	height: 50px;
	font-size:25px;
	text-align: center;
	float:right;
	width: 50px;
	position: relative;
	-webkit-transition: background 0.5s;
	-moz-transition: background 0.5s;
	-o-transition: background 0.5s;
	transition: background 0.5s;
}
.mobile-header-icon:hover{
	cursor: pointer;
}
.mobile-header-icon span{
	float: left;
	position: absolute;
	left: calc((100% - 20px) / 2);
	top: calc((100% - 2px) / 2);
	width: 20px;
	height: 2px;
	background-color: rgba(255,255,255,1);
}
.mobile-header-icon span:nth-child(1){
	transform: translateY(4px) rotate(0deg);
	top: calc((100% - 8px) / 2);
}

.mobile-header-icon span:nth-child(2){
	transform: translateY(-4px) rotate(0deg);
	top: calc((100% - -8px) / 2);
}
.mobile-header-icon span:nth-child(3){
	opacity: 1;
	top: calc((100%) / 2);
}

	
.mobile-icon-click span:nth-child(1){
	top: calc((100% - 2px) / 2);
	animation-duration: 0.5s;
	animation-fill-mode: both;
	animation-name: clickfirst;
}		
.mobile-icon-click span:nth-child(2){
	top: calc((100% - 2px) / 2);
	animation-duration: 0.5s;
	animation-fill-mode: both;
	animation-name: clicksecond;
}
.mobile-icon-click span:nth-child(3){
	opacity: 0;
}


@keyframes clickfirst {
  0% {
	  transform: translateY(4px) rotate(0deg);
	  
  }

  100% {
    transform: translateY(0) rotate(45deg);
  }
}	



@keyframes clicksecond {
  0% {
	  transform: translateY(-4px) rotate(0deg);
  }

  100% {
    transform: translateY(0) rotate(-45deg);
  }
}	

.mobile-icon-btn span:nth-child(1){
	animation-duration: 0.5s;
	animation-fill-mode: both;
	animation-name: outfirst;
	}		
.mobile-icon-btn span:nth-child(2){
	animation-duration: 0.5s;
	animation-fill-mode: both;
	animation-name: outsecond;
	}
@keyframes outfirst {
  0% {
    transform: translateY(0) rotate(-45deg);
  }

  100% {
    transform: translateY(-4px) rotate(0deg);
  }
}	
@keyframes outsecond {
  0% {
    transform: translateY(0) rotate(45deg);
  }

  100% {
    transform: translateY(4px) rotate(0deg);
  }
}

.mobile-inner-nav{
	display: none;
	max-width: 500px;
	margin: 0 auto;
}
.mobile-inner-nav ul li.home {border-bottom: solid 3px #ef3140;;}
.mobile-inner-nav ul li {border-bottom: solid 1px #ef3140;;}
.mobile-inner-nav h2 {position: relative;}
.mobile-inner-nav a {
	display: inline-block;
	width: 100%;
	font-size: 16px;
	color: #FFF;
	padding: 18px 50px 18px 0;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
	font-weight:300;
}


.mobile-inner-nav a {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: returnToNormal;
  animation-name: returnToNormal;
}
    
@-webkit-keyframes returnToNormal {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes returnToNormal {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

.mobile-inner-nav i {display: block;position: absolute;top: 12px;right: 0; width: 45px;height: 36px;font-size: 24px;color: #fff;border-left: 1px solid #ef3140;text-align: center;font-style: normal;cursor: pointer;}


/* 子栏目 */
.mobile-inner-nav ul ul {display: none;padding-bottom: 10px;background: #fff;}
.mobile-inner-nav ul ul li {border-bottom: solid 1px rgb(239, 49, 64, .1);}
.mobile-inner-nav ul ul li a {font-size: 14px;color: #000;padding: 8px 12px;font-weight: normal;}
.mobile-inner-nav ul ul li i {top: 0;color: #000;border: none;}

.mobile-inner-nav ul ul ul {}
.mobile-inner-nav ul ul ul li {border: none;}
.mobile-inner-nav ul ul ul li a {padding-left: 28px;}

.mobile-share {font-size: 0;padding-top: 12px;}
.mobile-share li {display: inline-block;margin-right: 10px;border-bottom: none !important;text-align: center;}
.mobile-share li a {display: block;width: 36px;height: 36px;line-height: 32px;padding: 0;border: solid 2px rgba(255,255,255,0.5);border-radius: 50%;}
.mobile-share li a:hover {background-color: #ef3140;}
.mobile-share li a img {display: inline-block;height: 14px;}


/* 中等屏幕（桌面显示器，大于等于 1200px） */
@media screen and (min-width:1200px) {
	.mobile-header-icon:hover{
		background-color: rgba(255,255,255,0.2);
	}
}